fetchAppointmentCount
fetchAppointmentCount
Header Parameters
authorization string required
authorization
application/json
Request Body required
request
date string
dealerDepartmentUuidList string[]
dealerUUID string
requesterUserUuid string
technicianList object[]
Responses
- 200
- 201
- 401
- 403
- 404
OK
application/json
Schema
Example (from schema)
Schema
appointmentCountList object[]
error object
statusCode int32
warnings object[]
{
"appointmentCountList": [
{
"count": 0,
"userUUID": "string"
}
],
"error": {
"code": "string",
"description": "string",
"metadata": {}
},
"statusCode": 0,
"warnings": [
{
"code": "string",
"description": "string"
}
]
}
Created
Unauthorized
Forbidden
Not Found
POST /appointment/count
Request
Request
curl / cURL
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
python / requests
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
go / native
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
nodejs / axios
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
ruby / Net::HTTP
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
csharp / RestSharp
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
php / cURL
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
java / OkHttp
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'
powershell / RestMethod
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"date": "string",
"dealerDepartmentUuidList": [
"string"
],
"dealerUUID": "string",
"requesterUserUuid": "string",
"technicianList": [
{
"departmentUuid": "string",
"isMobileServiceTechnician": true,
"isValid": true,
"userUuid": "string"
}
]
}'